/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0/topAir";
    object      p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [ 1 -1 -2 0 0 0 0 ];

internalField   uniform 100000;

boundaryField
{
    topAir_top
    {
        type            symmetryPlane;
        value           uniform 100000;
    }
    leftLet
    {
        type            fixedFluxPressure;
        value           uniform 100000;
    }
    rightLet
    {
        type            fixedMean;
        value           uniform 100000;
        meanValue       uniform 100000;
    }
    frontAndBack
    {
        type            empty;
    }
    topAir_to_wallad1
    {
        type            fixedFluxPressure;
        value           uniform 100000;
    }
    topAir_to_wallad2
    {
        type            fixedFluxPressure;
        value           uniform 100000;
    }
    topAir_to_wall
    {
        type            fixedFluxPressure;
        value           uniform 100000;
    }
}


// ************************************************************************* //
